Skip to content

Commit

Permalink
HUE-2438 [core] Disable SSLv3 for Poodle vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
romainr committed Oct 28, 2014
1 parent 1b64d0c commit 0060abf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions desktop/core/src/desktop/lib/wsgiserver.py
Expand Up @@ -1667,6 +1667,7 @@ def _bind(self, family, type, proto=0):
ctx.set_cipher_list(self.ssl_cipher_list)
ctx.use_privatekey_file(self.ssl_private_key)
ctx.use_certificate_file(self.ssl_certificate)
ctx.set_options(SSL.OP_NO_SSLv2 | SSL.OP_NO_SSLv3)
self.socket = SSLConnection(ctx, self.socket)
self.populate_ssl_environ()

Expand Down

0 comments on commit 0060abf

Please sign in to comment.